home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / turbotut.arc / UGLYFORM.PAS < prev    next >
Pascal/Delphi Source File  |  1989-06-30  |  281b  |  8 lines

  1. PROGRAM ugly_programming_style;BEGIN  WRITE('Programming style ');WRITE
  2. ('is a matter of ');
  3. WRITELN('personal choice');WRITE('Each person ');
  4. WRITE('can choose ');WRITELN
  5. ('his own style');WRITE('He can be ');WRITE
  6.     ('very clear, or ');
  7. WRITELN('extremely messy');END.
  8.